Invoke(Delegate,Object[]) Method
In This Topic
Syntax
'Declaration
Public Overloads Function Invoke( _
ByVal As System.Delegate, _
ByVal ParamArray () As System.Object _
) As System.Object
'Usage
Dim instance As DicomViewer
Dim method As System.Delegate
Dim args() As System.Object
Dim value As System.Object
value = instance.Invoke(method, args)
public System.object Invoke(
System.Delegate ,
params System.object[]
)
public function Invoke(
: System.Delegate;
params : System.TObjectarray of
): System.TObject;
public function Invoke(
: System.Delegate,
: System.Object[]
) : System.Object;
public: System.Object* Invoke(
System.Delegate* ,
params System.Object*[]*
)
public:
System.Object^ Invoke(
System.Delegate^ ,
... System.array<Object^>^
)
Parameters
- method
- args
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also